home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / Sample Code / Snippets / Toolbox / Notification Hacks / NotificationMon.ƒ / Headers / Event.h next >
Encoding:
C/C++ Source or Header  |  1992-09-04  |  388 b   |  11 lines  |  [TEXT/KAHL]

  1. /*
  2.  
  3.     Global variables for Event.c
  4.  
  5. */
  6.  
  7. extern Boolean        WNE_available;        /* true if WaitNextEvent is available                                 */
  8. extern Boolean        Done;                /* Set to true when the user quits                                     */
  9. extern Boolean        KeyPressed;            /* true if user pressed a key this time through event loop             */
  10. extern char            KeyValue;            /* the ascii character last typed                                     */
  11. extern Boolean        InBackGround;